home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.3 KB | 53 lines | [TEXT/MPS ] |
- ;
- ; File: CRMSerialDevices.a
- ;
- ; Copyright: © 1984-1994 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__CRMSERIALDEVICES__') = 'UNDEFINED' THEN
- __CRMSERIALDEVICES__ SET 1
-
-
- IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
- include 'Types.a'
- ENDIF
- ; include 'ConditionalMacros.a' ;
-
- ; for the crmDeviceType field of the CRMRec data structure
- crmSerialDevice EQU 1
- ; version of the CRMSerialRecord below
- curCRMSerRecVers EQU 1
-
- ; Maintains compatibility w/ apps & tools that expect an old style icon
- CRMIconRecord RECORD 0
- oldIcon ds.l 32 ; ICN#
- oldMask ds.l 32
- theSuite ds.l 1 ; Handle to an IconSuite
- reserved ds.l 1
- sizeof EQU 264
- ENDR
-
- CRMSerialRecord RECORD 0
- version ds.w 1
- inputDriverName ds.l 1
- outputDriverName ds.l 1
- name ds.l 1
- deviceIcon ds.l 1
- ratedSpeed ds.l 1
- maxSpeed ds.l 1
- reserved ds.l 1
- sizeof EQU 30
- ENDR
-
- ENDIF ; __CRMSERIALDEVICES__
-